In [2]:
from sympy import *
init_printing()
For each exercise, fill in the function according to its docstring.
In [3]:
a, b, c, d, x, y, z, t = symbols('a b c d x y z t')
f, g, h = symbols('f g h', cls=Function)
Write a function that computes the quadratic equation.
In [5]:
def quadratic():
return solve(a*x**2 + b*x + c, x)
quadratic()
Out[5]:
Write a function that computes the general solution to the cubic $x^3 + ax^2 + bx + c$.
In [6]:
def cubic():
return solve(x**3 + a*x**2 + b*x + c, x)
cubic()
Out[6]:
A population that grows without bound is modeled by the differential equation
$$f'(t)=af(t)$$Solve this differential equation using SymPy.
In [7]:
dsolve(f(t).diff(t) - a*f(t), f(t))
Out[7]:
If the population growth is bounded, it is modeled by
$$f'(t) = f(t)(1 - f(t))$$Solve this differential equation using SymPy.
In [8]:
dsolve(f(t).diff(t) - f(t)*(1 - f(t)), f(t))
Out[8]: